home *** CD-ROM | disk | FTP | other *** search
- ;The form data segment:
- formSeg segment byte public
-
- ;only mintform knows what's in it.
-
- formSeg ends
-
-
- ;The form data structure:
- ; fb_prim requires that form_length be the first entry.
- form_struc struc
- form_length dw ? ;* + [*] -> next *
- name_length dw ? ;length in bytes of form name.
- hash_link dw ? ;link to next item that hashes to this.
- form_pointer dw ? ;number of bytes into the form so far.
- data_length dw ? ;number of bytes of data.
- form_struc ends
-
- ;note that (size form) + name_length + data_length do not necessarily add
- ; up to form_length. The data length might be less than the maximum available
- ; to a form.
-
- name_offset equ (size form_struc)
-
- free_space equ 200
-
- NIL equ 0
-
- sgap equ 80h
-
-